type net/http.http2FrameHeader

36 uses

	net/http (current package)
		h2_bundle.go#L1693: type http2frameParser func(fc *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error)
		h2_bundle.go#L1718: type http2FrameHeader struct {
		h2_bundle.go#L1742: func (h http2FrameHeader) Header() http2FrameHeader { return h }
		h2_bundle.go#L1744: func (h http2FrameHeader) String() string {
		h2_bundle.go#L1752: func (h http2FrameHeader) writeDebug(buf *bytes.Buffer) {
		h2_bundle.go#L1779: func (h *http2FrameHeader) checkValid() {
		h2_bundle.go#L1785: func (h *http2FrameHeader) invalidate() { h.valid = false }
		h2_bundle.go#L1798: func http2ReadFrameHeader(r io.Reader) (http2FrameHeader, error) {
		h2_bundle.go#L1804: func http2readFrameHeader(buf []byte, r io.Reader) (http2FrameHeader, error) {
		h2_bundle.go#L1807: 		return http2FrameHeader{}, err
		h2_bundle.go#L1809: 	return http2FrameHeader{
		h2_bundle.go#L1824: 	Header() http2FrameHeader
		h2_bundle.go#L2154: 	http2FrameHeader
		h2_bundle.go#L2171: func http2parseDataFrame(fc *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
		h2_bundle.go#L2286: 	http2FrameHeader
		h2_bundle.go#L2290: func http2parseSettingsFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2425: 	http2FrameHeader
		h2_bundle.go#L2431: func http2parsePingFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
		h2_bundle.go#L2458: 	http2FrameHeader
		h2_bundle.go#L2473: func http2parseGoAwayFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2501: 	http2FrameHeader
		h2_bundle.go#L2515: func http2parseUnknownFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2522: 	http2FrameHeader
		h2_bundle.go#L2526: func http2parseWindowUpdateFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2569: 	http2FrameHeader
		h2_bundle.go#L2594: func http2parseHeadersFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (_ http2Frame, err error) {
		h2_bundle.go#L2711: 	http2FrameHeader
		h2_bundle.go#L2736: func http2parsePriorityFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
		h2_bundle.go#L2781: 	http2FrameHeader
		h2_bundle.go#L2785: func http2parseRSTStreamFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2813: 	http2FrameHeader
		h2_bundle.go#L2817: func http2parseContinuationFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2854: 	http2FrameHeader
		h2_bundle.go#L2868: func http2parsePushPromise(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (_ http2Frame, err error) {
		h2_bundle.go#L4595: 			http2FrameHeader: http2FrameHeader{valid: true},